home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk1 / lst9-7.asm < prev    next >
Encoding:
Assembly Source File  |  1990-02-15  |  257 b   |  14 lines

  1. ;
  2. ; *** Listing 9-7 ***
  3. ;
  4. ; Times the performance of a 16-bit register DEC.
  5. ;
  6.     mov    dx,1000
  7.     call    ZTimerOn
  8. TestLoop:
  9.     dec    dx    ;16-bit register DEC
  10.             ; (1 byte long, uses 16-bit-
  11.             ; register-specific form of DEC)
  12.     jnz    TestLoop
  13.     call    ZTimerOff
  14.